static char *output_type = NULL;
static char *road_changes = NULL;
static char *nogc = NULL;
+static char *nourl = NULL;
static char *opt_symbol = NULL;
static char *opt_color = NULL;
static char *opt_zoom = NULL;
"", ARGTYPE_STRING, ARG_NOMINMAX },
{"nogc", &nogc, "Do not add geocache data to description",
NULL, ARGTYPE_BOOL, ARG_NOMINMAX },
+ {"nourl", &nourl, "Do not add URLs to description",
+ NULL, ARGTYPE_BOOL, ARG_NOMINMAX },
{"deficon", &opt_symbol, "Symbol to use for point data",
"Red Flag", ARGTYPE_STRING, ARG_NOMINMAX },
{"color", &opt_color, "Color for lines or mapnotes",
xfree( extra );
}
- if ( wpt->url ) {
+ if ( !nourl && wpt->url ) {
int len = 7+strlen(wpt->url);
char *extra = (char *)xmalloc( len );
sprintf( extra, "{URL=%s}", wpt->url );
--- /dev/null
+<para>
+If your original waypoint data contains URLs, GPSBabel will include them as
+links in the generated drawing file. This causes the waypoint symbol to have
+a blue border, and it causes the waypoint text to be drawn in blue with an
+underline.
+</para>
+<para>
+If you do not want this behavior, specify the "nourl" option on the command
+line:
+</para>
+<para><userinput>gpsbabel -i gpx -f 12345.gpx -o an1,nourl -F 12345.an1</userinput></para>
+